home *** CD-ROM | disk | FTP | other *** search
/ PsL Monthly 1993 December / PSL Monthly Shareware CD-ROM (December 1993).iso / prgmming / win / pascal / modialg.exe / MDIEXAM.MNU < prev    next >
Encoding:
Text File  |  1991-11-21  |  502 b   |  26 lines

  1. MDIExample MENU 
  2. BEGIN
  3.     POPUP "&Child"
  4.     BEGIN
  5.         POPUP "&New"
  6.         BEGIN
  7.             MENUITEM "Dialog &1", id_Dialog1
  8.             MENUITEM "Dialog &2", id_Dialog2
  9.             MENUITEM "&Editor", id_EditCtrl
  10.             MENUITEM "&Rectangles", id_RandRect
  11.         END
  12.  
  13.         MENUITEM SEPARATOR
  14.         MENUITEM "E&xit", cm_Exit
  15.     END
  16.  
  17.     POPUP "&Window"
  18.     BEGIN
  19.         MENUITEM "&Cascade", cm_CascadeChildren
  20.         MENUITEM "&Tile", cm_TileChildren
  21.         MENUITEM "Arrange &Icons", cm_ArrangeIcons
  22.         MENUITEM "Close &All", cm_CloseChildren
  23.     END
  24.  
  25. END
  26.